$>
from
Functor型クラス
<$
の逆版
($>) :: Functor f => f a -> b -> f b
docs
f a
の要素を全部
b
に置き換える
code:hs
>>
1,2,3
$> "hoge"
"hoge","hoge","hoge"